home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1998 January / PC Answers Issue 49 Cover CD January 1998.iso / Apps / Director / DATA.Z / Lists Lingo.dir / Scripts_87_getLast(aPropertyList).ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  346 b   |  11 lines

  1. on mouseDown
  2.   global gDefaultPropList
  3.   doButton()
  4.   set vLastValue to getLast(gDefaultPropList)
  5.   if stringp(vLastValue) then
  6.     set the text of member "Checking Property getAt Display Field 3" to QUOTE & string(vLastValue) & QUOTE
  7.   else
  8.     set the text of member "Checking Property getAt Display Field 3" to string(vLastValue)
  9.   end if
  10. end
  11.